home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / demos / VisualAge for Java 2.0 Entry / setup / data1.cab / ide-e / IDE / cache / ELMSDI (.txt) < prev    next >
Encoding:
Java Class File  |  1998-09-16  |  631 b   |  15 lines

  1. package java.beans;
  2.  
  3. public class PropertyVetoException extends Exception {
  4.    private PropertyChangeEvent evt;
  5.  
  6.    public PropertyVetoException(String mess, PropertyChangeEvent evt) {
  7.       super(mess);
  8.       this.evt = evt;
  9.    }
  10.  
  11.    public PropertyChangeEvent getPropertyChangeEvent() {
  12.       return this.evt;
  13.    }
  14. }
  15.